home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / educate / schoolsh.zip / PRESERVE.BAT < prev    next >
DOS Batch File  |  1995-09-28  |  2KB  |  48 lines

  1. ECHO OFF
  2. CLS
  3. echo.
  4. echo.
  5. echo.
  6. echo   You are about to create a NEW DIRECTORY, on the C:DRIVE, called
  7. echo   SCHOOL2.  Following its creation, the entire HOME SCHOOL program
  8. echo   will be copied into that directory, as well as all of the records
  9. echo   that you have created.  Basically, this means that TOTALLY EVERYTHING
  10. echo   that presently exists, in your HOME SCHOOL program, will be duplicated,
  11. echo   on the hard drive, and you can go to the SCHOOL2 directory, anytime,
  12. echo   and access all of the records that presently exist, in exactly the
  13. echo   same manner that you have been doing. This is nice for reference.
  14. echo.
  15. echo   THEN - All of the RECORDS, (not the HOME SCHOOL program), will be
  16. echo   erased from this presently active directory, and you will have a
  17. echo   clean start, with a BARE BONES program, to start your next period,
  18. echo   year, etc.  In this respect, the same thing happens as if you had
  19. echo   used the CLEAR option, except that the CLEAR option would not have
  20. echo   preserved your present directories contents in a NEW directory by
  21. echo   the name of SCHOOL2.
  22. echo.
  23. echo   If you wish to ABORT this screen, without any action taking place,
  24. echo   press CTRL and C, at the same time, answer Y to the "Abort Batch Job?"
  25. echo   prompt, and you'll return to DOS.  If ready to continue with the action
  26. echo   indicated, just press the ENTER key.  You must be certain that you have
  27. echo   enough space on your C:DRIVE, to accomodate the total contents of your
  28. echo   present directory.
  29. pause
  30. MD C:\SCHOOL2
  31. COPY *.* C:\SCHOOL2
  32. DEL *.REC
  33. CLS
  34. echo.
  35. echo.
  36. echo.
  37. echo.
  38. echo   The SCHOOL2 directory has been created, and now contains the entirety
  39. echo   of your original directories contents, for your future reference.  
  40. echo   Your present directory now contains ONLY the HOME SCHOOL program, with
  41. echo   all previous records having been erased.  Press ENTER to return to the
  42. echo   DOS prompt.  To resume the HOME SCHOOL program, simply type GO and
  43. echo   press the ENTER key, or you may terminate your HOME SCHOOL session.
  44. echo.
  45. echo.
  46. echo.
  47. pause
  48.